Here's my dilemma:
I am creating a histogram through matplotlib and saving it in the same folder I'm running. There are a few image files that I can save it as, none of them being bitmap.
So I'm trying to convert the image to bitmap. I've looked at WxImage and Python Imaging Library (PIL) and I have no clue what I'm doing wrong.
My goal is to take that newly saved image file (.png) and to convert it to a bitmap (.bmp) file within the same folder.
I've looked at a number of examples but I either don't know how to apply them or they don't work.
I just want to know a simple example that works. Python Image Library has a tobitmap() function but it doesn't work. WxImage has a ConvertToBitmap() function but I don't understand it.
Any help?